home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / msdos / lynx / source / doslynx / inc / tpasswor.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-25  |  677 b   |  31 lines

  1. #ifndef __TPASSWORDINPUTLINE_H
  2. //    Avoid include redundancy
  3. #define __TPASSWORDINPUTLINE_H
  4.  
  5. //    Copyright (c) 1994, University of Kansas, All Rights Reserved
  6. //
  7. //    Include File:    tpasswor.h
  8. //    Purpose:    Implement a password input line.
  9. //    Remarks/Portability/Dependencies/Restrictions:
  10. //    Revision History:
  11. //        04-22-94    created.
  12.  
  13. //    Constant defines
  14.  
  15. //    Required includes
  16. #define Uses_TInputLine
  17. #include<tv.h>
  18.  
  19. //    Class declarations
  20. class TPasswordInputLine : public TInputLine    {
  21. public:
  22.     TPasswordInputLine(const TRect& TR_bounds, int i_MaxLen);
  23.     virtual void draw();
  24. };
  25.  
  26. //    Global variable declarations
  27.  
  28. //    Macros
  29.  
  30. #endif // __TPASSWORDINPUTLINE_H
  31.